DrawLines(PointF[],Color,Single,Single[]) Method
In This Topic
Draws a series of connected lines, using a specified line style.
If the dashPattern array contains two or more items, the lines are drawn with a Pen having Pen.LineCap set to PenLineCap.Square instead of PenLineCap.Flat.
Syntax
'Declaration
Public Overloads Sub DrawLines( _
ByVal () As System.Drawing.PointF, _
ByVal As System.Drawing.Color, _
ByVal As System.Single, _
ByVal () As System.Single _
)
public void DrawLines(
System.Drawing.PointF[] ,
System.Drawing.Color ,
System.float ,
System.float[]
)
Parameters
- points
- The array of points to connect.
- lineColor
- The line color.
- lineWidth
- The line width.
- dashPattern
- The dash pattern.
See Also